0d19fe44c2386fd87d3b27b0a0645b81653b2837,core/java/src/net/i2p/client/naming/BlockfileNamingService.java,BlockfileNamingService,getBase64Entries,#Properties#,996

Before Change


                    iter.next();
                }
                for (int i = 0; i < limit && iter.hasNext(); ) {
                    String key = (String) iter.nextKey();
                    if (startsWith != null) {
                        if (startsWith.equals("[0-9]")) {
                            if (key.charAt(0) > '9')

After Change


                    iter.next();
                }
                for (int i = 0; i < limit && iter.hasNext(); ) {
                    String key = iter.nextKey();
                    if (startsWith != null) {
                        if (startsWith.equals("[0-9]")) {
                            if (key.charAt(0) > '9')